#import "Fraction.h"

int main (int argc, char *argv [])

{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    Fraction *f = [[Fraction alloc] init];

    @try {
        [f noSuchMethod];
    }
    @catch (NSException *exception) {
        NSLog(@"Wyjtek %@%@", [exception name], [exception reason]);
    }
    NSLog (@"Program kontynuuje dziaanie!");
    [f release];
    [pool drain];
    return 0;
}